home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Utilities / DOpus / GDTrash / Prefs / DTrashConfig / Load.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1999-07-24  |  709 b   |  18 lines

  1. /* Load TrashPrefs */
  2.  
  3. options results; address trash
  4. MUIA_Cycle_Active       = 0x80421788;   MUIA_Selected           = 0x8042654b
  5. MUIA_String_Contents    = 0x80428ffd;
  6.  
  7. if open('PrefsFile', 'ENV:trash.prefs', 'r') = 1 then do
  8.   stat = readln('PrefsFile'); check ID  Ask ATTRS MUIA_Selected stat 
  9.   stat = readln('PrefsFile'); cycle ID  fm MUIA_Cycle_Active stat-1
  10.   stat = readln('PrefsFile'); popasl ID t ATTRS MUIA_String_Contents stat
  11.   stat = readln('PrefsFile'); popasl ID tn ATTRS MUIA_String_Contents stat
  12.   stat = readln('PrefsFile'); string ID in ATTRS MUIA_String_Contents '"'stat'"'
  13.   stat = readln('PrefsFile'); popasl ID tool ATTRS MUIA_String_Contents stat
  14.   call close('SaveFile')
  15. end
  16. return
  17.  
  18.